home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / TCL1 / __MANDEL / MANDELBR / CMANDELR.H < prev    next >
Text File  |  1992-03-28  |  510b  |  26 lines

  1. //    CMandelRectPhase.h
  2.  
  3. #pragma once
  4.  
  5. #include "CMandelPhase.h"
  6.  
  7. class CMandelRectPhase: public CMandelPhase {
  8.  
  9.     public:
  10.     
  11.         void                    IMandelRectPhase(CMandelDoc *, CMandelPhase *,
  12.                                          short, short, short, short);
  13.         virtual CMandelPhase *    Perform(void);
  14.     
  15.     protected:
  16.     
  17.         double                    itsHStart, itsVStart;
  18.         double                    itsScale;
  19.         double                    itsHTemp;
  20.         TDwell                    itsMaxDwell;
  21.         TDwellH                    itsDwellsH;
  22.         short                    itsNRows, itsNCols;
  23.         short                    itsNTemp;
  24.         long                    itsIndex;
  25.         short                    itsVOffset;
  26. };